API Documentation
Point.h
1 // Point.h
3 //
5 
6 namespace nkMaths
7 {
11  class DLL_WINUI_EXPORT Point
12  {
13  public :
14 
15  // Attributes
16  float _x = 0.f ;
17  float _y = 0.f ;
18 
19  // Functions
23  Point () = default ;
30  Point (float x, float y) ;
31  } ;
32 }
nkMaths
Encompasses all API of component NilkinsMaths.
Definition: IntVector.h:7
nkMaths::Point::Point
Point()=default
nkMaths::Point::Point
Point(float x, float y)
nkMaths::Point
Represents a 2D Point.
Definition: Point.h:12